home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
redakcyjne
/
programy
/
Tlen 6.0.1.12 pl
/
tleninst60112.exe
/
sdk
/
TlenSources
/
plugin
/
sl_struct.h
< prev
Wrap
C/C++ Source or Header
|
2006-08-30
|
917b
|
27 lines
//---------------------------------------------------------------------------
#ifndef sl_structH
#define sl_structH
//---------------------------------------------------------------------------
#include <windows.h>
typedef struct {
int structSize; //wielko£µ struktury w bajtach
char **strings;
int count;
} StringListDef;
typedef int (*sl_init_type) (StringListDef *s);
typedef int (*sl_add_type) (StringListDef *s, char *string);
typedef int (*sl_delete_type) (StringListDef *s, int index);
typedef char * (*sl_get_type) (StringListDef *s, int index);
typedef int (*sl_find_type) (StringListDef *s, char *string);
typedef int (*sl_free_type) (StringListDef *s);
typedef int (*sl_addstrings_type) (StringListDef *s, StringListDef *strings);
typedef int (*sl_commonpart_type) (StringListDef *s, StringListDef *cmp);
#endif